home *** CD-ROM | disk | FTP | other *** search
/ Visual Cafe 3 / Visual Cafe 3.ISO / Vcafe / Main.bin / TitleJustificationPropertyEditor.java < prev    next >
Text File  |  1998-04-21  |  935b  |  28 lines

  1. package com.symantec.itools.swing.borders;
  2.  
  3. import com.symantec.itools.beans.*;
  4.  
  5. public final class TitleJustificationPropertyEditor
  6.     extends TaggedIntPropertyEditor
  7. {
  8.     private static TaggedInt[] m_Tags = null;
  9.     
  10.     // When the class loads, load the tags
  11.     
  12.     static
  13.     {
  14.         m_Tags = new TaggedInt[]
  15.         { 
  16.             new TaggedInt("LEFT", com.sun.java.swing.border.TitledBorder.LEFT, "com.sun.java.swing.border.TitledBorder.LEFT"),
  17.             new TaggedInt("CENTER", com.sun.java.swing.border.TitledBorder.CENTER, "com.sun.java.swing.border.TitledBorder.CENTER"),
  18.             new TaggedInt("RIGHT", com.sun.java.swing.border.TitledBorder.RIGHT, "com.sun.java.swing.border.TitledBorder.RIGHT"),
  19.             new TaggedInt("DEFAULT_JUSTIFICATION", com.sun.java.swing.border.TitledBorder.DEFAULT_JUSTIFICATION, "com.sun.java.swing.border.TitledBorder.DEFAULT_JUSTIFICATION"),
  20.         };
  21.     }
  22.     
  23.     public TitleJustificationPropertyEditor()
  24.     {
  25.         super(m_Tags);
  26.     }
  27. }
  28.